home *** CD-ROM | disk | FTP | other *** search
-
-
- <script language="JavaScript">
- <!-- This Script And Over 400 Others Found At --!>
- <!-- Java City 2000 http://www.jc2k.com --!>
- <!-- This script will display a picture that will dissapear from the page after a certain date
- is reached. -->
-
- <!-- Begin
- function checknew(date) {
- var pic = "http://www.your-site.com/where-you-put-it/new.gif";
- expdate = new Date(date);
- curdate = new Date();
- if (expdate.getTime() > curdate.getTime())
- document.write("<img src=" + pic + ">");
- }
- // End -->
- </script>
-
- <!-- Examples of how to call the script -->
-
- <script> checknew("6/1/98") </script>Shown as "New" until 6/1/98<br>
- <script> checknew("12/31/98") </script>Shown as "New" until 12/31/98<br>
- <script> checknew("6/1/99") </script>Shown as "New" until 6/1/99<br>
- <script> checknew("12/31/99") </script>Shown as "New" until 12/31/99<br>
-